Route Segment
https://scrapbox.io/files/66c33acf583cf4001d47a84c.png
https://nextjs.org/docs/app/building-your-application/routing#route-segments
特定の URL Path に対応する URL Segment
一番上の Segment を Root Segment と呼び、子を持たない Segment を Leaf Segment と呼ぶ
パスパラメータに動的な値を持つ場合: Dynamic Routes
各 Segment では、page.tsx や layout.tsx を持つこともできるし、持たなくても良い
構成ファイル: https://nextjs.org/docs/app/building-your-application/routing#file-conventions
page.tsx
layout.tsx
loading.tsx
not-found.tsx
error.tsx
route.ts
template.tsx
default.tsx
global-error.tsx
#Next.js #App_Router